Crate tiny_keccak

Source
Expand description

Keccak derived functions specified in FIPS-202, SP800-185 and KangarooTwelve.

§Example

let input_a = b"hello world";
let input_b = b"!";
let mut output = [0u8; 32];
hasher.update(input_a);
hasher.update(input_b);
hasher.finalize(&mut output);

§Credits

§License

CC0. Attribution kindly requested. Blame taken too, but not liability.

Structs§

Traits§

  • A trait for hashing an arbitrary stream of bytes.
  • A trait used to convert Hasher into it’s Xof counterpart.
  • Extendable-output function (XOF) is a function on bit strings in which the output can be extended to any desired length.

Functions§